home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_02 / 9n02120a < prev    next >
Text File  |  1990-12-03  |  313b  |  8 lines

  1.  
  2.      VAR(      int,      foo  );             /* simple variable */
  3.      INIT(     WORD,     bar, 5 );           /* init variable */
  4.      INIT(     BYTE,     aaa[5], { 1,2,3,4,5});
  5.                                              /* init array */
  6.      TBL(      BYTE,     tbl[], table.h);    /* init table */
  7.  
  8.